home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_xemacs.idb / usr / freeware / lib / xemacs-20.4 / lisp / vm / auto-autoloads.el.z / auto-autoloads.el
Encoding:
Text File  |  1998-05-21  |  12.6 KB  |  376 lines

  1. ;;; DO NOT MODIFY THIS FILE
  2. (if (featurep 'vm-autoloads) (error "Already loaded"))
  3.  
  4. (provide 'vm-autoloads)
  5.  
  6. ;;;### (autoloads (vm-submit-bug-report vm-mail-other-window vm-mail-other-frame vm-mail vm-visit-virtual-folder-other-window vm-visit-virtual-folder-other-frame vm-visit-virtual-folder vm-visit-folder-other-window vm-visit-folder-other-frame vm-visit-folder vm-mode vm-other-window vm-other-frame vm) "vm-startup" "vm/vm-startup.el")
  7.  
  8. (autoload 'vm "vm-startup" "\
  9. Read mail under Emacs.
  10. Optional first arg FOLDER specifies the folder to visit.  It defaults
  11. to the value of vm-primary-inbox.  The folder buffer is put into VM
  12. mode, a major mode for reading mail.
  13.  
  14. Prefix arg or optional second arg READ-ONLY non-nil indicates
  15. that the folder should be considered read only.  No attribute
  16. changes, message additions or deletions will be allowed in the
  17. visited folder.
  18.  
  19. Visiting the primary inbox causes any contents of the system mailbox to
  20. be moved and appended to the resulting buffer.
  21.  
  22. All the messages can be read by repeatedly pressing SPC.  Use `n'ext and
  23. `p'revious to move about in the folder.  Messages are marked for
  24. deletion with `d', and saved to another folder with `s'.  Quitting VM
  25. with `q' expunges deleted messages and saves the buffered folder to
  26. disk.
  27.  
  28. See the documentation for vm-mode for more information." t nil)
  29.  
  30. (autoload 'vm-other-frame "vm-startup" "\
  31. Like vm, but run in a newly created frame." t nil)
  32.  
  33. (autoload 'vm-other-window "vm-startup" "\
  34. Like vm, but run in a different window." t nil)
  35.  
  36. (autoload 'vm-mode "vm-startup" "\
  37. Major mode for reading mail.
  38.  
  39. This is VM 6.43.
  40.  
  41. Commands:
  42.    h - summarize folder contents
  43.  C-t - toggle threads display
  44.  
  45.    n - go to next message
  46.    p - go to previous message
  47.    N - like `n' but ignores skip-variable settings
  48.    P - like `p' but ignores skip-variable settings
  49.  M-n - go to next unread message
  50.  M-p - go to previous unread message
  51.  RET - go to numbered message (uses prefix arg or prompts in minibuffer)
  52.  TAB - go to last message seen
  53.    ^ - go to parent of this message
  54.  M-s - incremental search through the folder
  55.  
  56.    t - display hidden headers
  57.  SPC - expose message body or scroll forward a page
  58.    b - scroll backward a page
  59.    < - go to beginning of current message
  60.    > - go to end of current message
  61.  
  62.    d - delete message, prefix arg deletes messages forward
  63.  C-d - delete message, prefix arg deletes messages backward
  64.    u - undelete
  65.    k - flag for deletion all messages with same subject as the current message
  66.  
  67.    r - reply (only to the sender of the message)
  68.    R - reply with included text from the current message
  69.  M-r - extract and resend bounced message
  70.    f - followup (reply to all recipients of message)
  71.    F - followup with included text from the current message
  72.    z - forward the current message
  73.    m - send a message
  74.    B - resend the current message to another user.
  75.    c - continue composing the most recent message you were composing
  76.  
  77.    @ - digestify and mail entire folder contents (the folder is not modified)
  78.    * - burst a digest into individual messages, and append and assimilate these
  79.        messages into the current folder.
  80.  
  81.    G - sort messages by various keys
  82.  
  83.    g - get any new mail that has arrived in the system mailbox
  84.        (new mail is appended to the disk and buffer copies of the
  85.        primary inbox.)
  86.    v - visit another mail folder
  87.  
  88.    e - edit the current message
  89.    j - discard cached information about the current message
  90.  
  91.    s - save current message in a folder (appends if folder already exists)
  92.    w - write current message to a file without its headers (appends if exists)
  93.    S - save entire folder to disk, does not expunge
  94.    A - save unfiled messages to their vm-auto-folder-alist specified folders
  95.    # - expunge deleted messages (without saving folder)
  96.    q - quit VM, deleted messages are not expunged, folder is
  97.        saved to disk if it is modified.  new messages are changed
  98.        to be flagged as just unread.
  99.    x - exit VM with no change to the folder
  100.  
  101.  M N - use marks; the next vm command will affect only marked messages
  102.        if it makes sense for the command to do so.  These commands
  103.        apply and remove marks to messages:
  104.  
  105.        M M - mark the current message
  106.        M U - unmark the current message
  107.        M m - mark all messages
  108.        M u - unmark all messages
  109.        M C - mark messages matched by a virtual folder selector
  110.        M c - unmark messages matched by a virtual folder selector
  111.        M T - mark thread tree rooted at the current message
  112.        M t - unmark thread tree rooted at the current message
  113.        M S - mark messages with the same subject as the current message
  114.        M s - unmark messages with the same subject as the current message
  115.        M A - mark messages with the same author as the current message
  116.        M a - unmark messages with the same author as the current message
  117.        M R - mark messages within the point/mark region in the summary
  118.        M r - unmark messages within the point/mark region in the summary
  119.        M V - toggle the marked-ness of all messages
  120.  
  121.        M ? - partial help for mark commands
  122.  
  123.  W S - save the current window configuration to a name
  124.  W D - delete a window configuration
  125.  W W - apply a configuration
  126.  W ? - help for the window configuration commands
  127.  
  128.  V V - visit a virtual folder (must be defined in vm-virtual-folder-alist)
  129.  V C - create a virtual folder composed of a subset of the
  130.        current folder's messages.
  131.  V A - create a virtual folder containing all the messages in the current
  132.        folder with the same author as the current message.
  133.  V S - create a virtual folder containing all the messages in the current
  134.        folder with the same subject as the current message.
  135.  V X - apply the selectors of a named virtual folder to the
  136.        messages in the current folder and create a virtual folder
  137.        containing the selected messages.
  138.  V M - toggle whether this virtual folder's messages mirror the
  139.        underlying real messages' attributes.
  140.  V ? - help for virtual folder commands
  141.  
  142.  C-_ - undo, special undo that retracts the most recent
  143.              changes in message attributes and labels.  Expunges,
  144.              message edits, and saves cannot be undone.  C-x u is
  145.              also bound to this command.
  146.  
  147.    a - set message attributes
  148.  
  149.  l a - add labels to message
  150.  l d - delete labels from message
  151.  
  152.    L - reload your VM init file, ~/.vm
  153.  
  154.    % - change a folder to another type
  155.  
  156.    ? - help
  157.  
  158.    ! - run a shell command
  159.    | - run a shell command with the current message as input
  160.  
  161.  M-C - view conditions under which you may redistribute VM
  162.  M-W - view the details of VM's lack of a warranty
  163.  
  164. Use M-x vm-submit-bug-report to submit a bug report.
  165.  
  166. Variables:
  167.    vm-arrived-message-hook
  168.    vm-arrived-messages-hook
  169.    vm-auto-center-summary
  170.    vm-auto-decode-mime-messages
  171.    vm-auto-displayed-mime-content-types
  172.    vm-auto-folder-alist
  173.    vm-auto-folder-case-fold-search
  174.    vm-auto-get-new-mail
  175.    vm-auto-next-message
  176.    vm-berkeley-mail-compatibility
  177.    vm-burst-digest-messages-inherit-labels
  178.    vm-check-folder-types
  179.    vm-circular-folders
  180.    vm-confirm-new-folders
  181.    vm-confirm-quit
  182.    vm-convert-folder-types
  183.    vm-crash-box
  184.    vm-crash-box-suffix
  185.    vm-default-folder-type
  186.    vm-delete-after-archiving
  187.    vm-delete-after-bursting
  188.    vm-delete-after-saving
  189.    vm-delete-empty-folders
  190.    vm-digest-burst-type
  191.    vm-digest-center-preamble
  192.    vm-digest-preamble-format
  193.    vm-digest-send-type
  194.    vm-display-buffer-hook
  195.    vm-display-using-mime
  196.    vm-edit-message-hook
  197.    vm-folder-directory
  198.    vm-folder-read-only
  199.    vm-follow-summary-cursor
  200.    vm-forward-message-hook
  201.    vm-forwarded-headers
  202.    vm-forwarding-digest-type
  203.    vm-forwarding-subject-format
  204.    vm-frame-parameter-alist
  205.    vm-frame-per-completion
  206.    vm-frame-per-composition
  207.    vm-frame-per-edit
  208.    vm-frame-per-folder
  209.    vm-frame-per-help
  210.    vm-frame-per-summary
  211.    vm-highlighted-header-face
  212.    vm-highlighted-header-regexp
  213.    vm-honor-page-delimiters
  214.    vm-image-directory
  215.    vm-index-file-suffix
  216.    vm-in-reply-to-format
  217.    vm-included-text-attribution-format
  218.    vm-included-text-discard-header-regexp
  219.    vm-included-text-headers
  220.    vm-included-text-prefix
  221.    vm-invisible-header-regexp
  222.    vm-jump-to-new-messages
  223.    vm-jump-to-unread-messages
  224.    vm-keep-crash-boxes
  225.    vm-keep-sent-messages
  226.    vm-mail-check-interval
  227.    vm-mail-header-from
  228.    vm-mail-mode-hook
  229.    vm-make-crash-box-name
  230.    vm-make-spool-file-name
  231.    vm-mime-7bit-composition-charset
  232.    vm-mime-8bit-composition-charset
  233.    vm-mime-8bit-text-transfer-encoding
  234.    vm-mime-alternative-select-method
  235.    vm-mime-attachment-auto-type-alist
  236.    vm-mime-attachment-save-directory
  237.    vm-mime-avoid-folding-content-type
  238.    vm-mime-base64-decoder-program
  239.    vm-mime-base64-decoder-switches
  240.    vm-mime-base64-encoder-program
  241.    vm-mime-base64-encoder-switches
  242.    vm-mime-button-format-alist
  243.    vm-mime-button-face
  244.    vm-mime-charset-font-alist
  245.    vm-mime-default-face-charsets
  246.    vm-mime-digest-discard-header-regexp
  247.    vm-mime-digest-headers
  248.    vm-mime-display-function
  249.    vm-mime-external-content-types-alist
  250.    vm-mime-ignore-mime-version
  251.    vm-mime-internal-content-types
  252.    vm-mime-max-message-size
  253.    vm-mode-hook
  254.    vm-mosaic-program
  255.    vm-mosaic-program-switches
  256.    vm-move-after-deleting
  257.    vm-move-after-killing
  258.    vm-move-after-undeleting
  259.    vm-move-messages-physically
  260.    vm-mutable-frames
  261.    vm-mutable-windows
  262.    vm-netscape-program
  263.    vm-netscape-program-switches
  264.    vm-pop-auto-expunge-alist
  265.    vm-pop-bytes-per-session
  266.    vm-pop-expunge-after-retrieving
  267.    vm-pop-max-message-size
  268.    vm-pop-md5-program
  269.    vm-pop-messages-per-session
  270.    vm-popup-menu-on-mouse-3
  271.    vm-preferences-file
  272.    vm-preview-lines
  273.    vm-preview-read-messages
  274.    vm-primary-inbox
  275.    vm-quit-hook
  276.    vm-recognize-pop-maildrops
  277.    vm-reply-hook
  278.    vm-reply-ignored-addresses
  279.    vm-reply-ignored-reply-tos
  280.    vm-reply-subject-prefix
  281.    vm-resend-bounced-discard-header-regexp
  282.    vm-resend-bounced-headers
  283.    vm-resend-bounced-message-hook
  284.    vm-resend-discard-header-regexp
  285.    vm-resend-headers
  286.    vm-resend-message-hook
  287.    vm-retrieved-spooled-mail-hook
  288.    vm-rfc1153-digest-discard-header-regexp
  289.    vm-rfc1153-digest-headers
  290.    vm-rfc934-digest-discard-header-regexp
  291.    vm-rfc934-digest-headers
  292.    vm-search-using-regexps
  293.    vm-select-message-hook
  294.    vm-select-new-message-hook
  295.    vm-select-unread-message-hook
  296.    vm-send-digest-hook
  297.    vm-send-using-mime
  298.    vm-skip-deleted-messages
  299.    vm-skip-read-messages
  300.    vm-spool-file-suffixes
  301.    vm-spool-files
  302.    vm-startup-with-summary
  303.    vm-strip-reply-headers
  304.    vm-summary-arrow
  305.    vm-summary-format
  306.    vm-summary-highlight-face
  307.    vm-summary-mode-hook
  308.    vm-summary-redo-hook
  309.    vm-summary-show-threads
  310.    vm-summary-thread-indent-level
  311.    vm-tale-is-an-idiot
  312.    vm-temp-file-directory
  313.    vm-toolbar-pixmap-directory
  314.    vm-trust-From_-with-Content-Length
  315.    vm-undisplay-buffer-hook
  316.    vm-unforwarded-header-regexp
  317.    vm-url-browser
  318.    vm-url-search-limit
  319.    vm-use-menus
  320.    vm-use-toolbar
  321.    vm-virtual-folder-alist
  322.    vm-virtual-mirror
  323.    vm-visible-headers
  324.    vm-visit-folder-hook
  325.    vm-visit-when-saving
  326.    vm-warp-mouse-to-new-frame
  327.    vm-window-configuration-file
  328. " t nil)
  329.  
  330. (autoload 'vm-visit-folder "vm-startup" "\
  331. Visit a mail file.
  332. VM will parse and present its messages to you in the usual way.
  333.  
  334. First arg FOLDER specifies the mail file to visit.  When this
  335. command is called interactively the file name is read from the
  336. minibuffer.
  337.  
  338. Prefix arg or optional second arg READ-ONLY non-nil indicates
  339. that the folder should be considered read only.  No attribute
  340. changes, messages additions or deletions will be allowed in the
  341. visited folder." t nil)
  342.  
  343. (autoload 'vm-visit-folder-other-frame "vm-startup" "\
  344. Like vm-visit-folder, but run in a newly created frame." t nil)
  345.  
  346. (autoload 'vm-visit-folder-other-window "vm-startup" "\
  347. Like vm-visit-folder, but run in a different window." t nil)
  348.  
  349. (autoload 'vm-visit-virtual-folder "vm-startup" nil t nil)
  350.  
  351. (autoload 'vm-visit-virtual-folder-other-frame "vm-startup" "\
  352. Like vm-visit-virtual-folder, but run in a newly created frame." t nil)
  353.  
  354. (autoload 'vm-visit-virtual-folder-other-window "vm-startup" "\
  355. Like vm-visit-virtual-folder, but run in a different window." t nil)
  356.  
  357. (autoload 'vm-mail "vm-startup" "\
  358. Send a mail message from within VM, or from without.
  359. Optional argument TO is a string that should contain a comma separated
  360. recipient list." t nil)
  361.  
  362. (autoload 'vm-mail-other-frame "vm-startup" "\
  363. Like vm-mail, but run in a newly created frame.
  364. Optional argument TO is a string that should contain a comma separated
  365. recipient list." t nil)
  366.  
  367. (autoload 'vm-mail-other-window "vm-startup" "\
  368. Like vm-mail, but run in a different window.
  369. Optional argument TO is a string that should contain a comma separated
  370. recipient list." t nil)
  371.  
  372. (autoload 'vm-submit-bug-report "vm-startup" "\
  373. Submit a bug report, with pertinent information to the VM bug list." t nil)
  374.  
  375. ;;;***
  376.